home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 124 / MOBICLIC 124.ISO / mac / Milan.swf / scripts / __Packages / prod / hclasses / Trace / TraceBox.as next >
Text File  |  2010-05-11  |  364b  |  19 lines

  1. class prod.hclasses.Trace.TraceBox extends MovieClip
  2. {
  3.    function TraceBox()
  4.    {
  5.       super();
  6.       this.Init();
  7.    }
  8.    function Init()
  9.    {
  10.       trace("Init()" + this);
  11.       _global.TraceBox = this;
  12.    }
  13.    function Alerte(mess)
  14.    {
  15.       this.TraceBoxAlerte.Afficher(mess);
  16.       this.swapDepths(_global.gLEVELS.TraceBoxAlerte);
  17.    }
  18. }
  19.